home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / Tool Chest / Development Tools & Languages / Dylan Related / Dylan alpha demos / Online Insultant src ƒ / Library.dylan < prev    next >
Encoding:
Text File  |  1994-12-13  |  386 b   |  17 lines  |  [TEXT/ttxt]

  1. language: infix-dylan
  2. module: Dylan-user
  3.  
  4. /* Copyright (C) 1994, Apple Computer, Inc. All rights reserved. */
  5.  
  6. /* Set up a library and a module for the application
  7.  * The program can't be in Dylan-User because main has to be exported
  8.  */
  9.  
  10. define library Online-Insultant
  11.   use Dylan;
  12.   export Online-Insultant;
  13. end library;
  14.  
  15. define module Online-Insultant
  16.   use Apple-Dylan;
  17. end module;